aboutsummaryrefslogtreecommitdiff
path: root/front-end/src/views/[...all].vue
diff options
context:
space:
mode:
Diffstat (limited to 'front-end/src/views/[...all].vue')
-rw-r--r--front-end/src/views/[...all].vue5
1 files changed, 3 insertions, 2 deletions
diff --git a/front-end/src/views/[...all].vue b/front-end/src/views/[...all].vue
index 1f439fc..37439d1 100644
--- a/front-end/src/views/[...all].vue
+++ b/front-end/src/views/[...all].vue
@@ -11,9 +11,10 @@
</template>
<script setup lang="ts">
+import { useStore } from '../store';
-import { useTitle } from '@vnuge/vnlib.browser'
-useTitle('404 - Resource not found')
+const { setPageTitle } = useStore()
+setPageTitle('404 - Resource not found')
</script>